home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / pmode / qfml11 / example1.mak < prev    next >
Encoding:
Text File  |  1995-03-06  |  826 b   |  61 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +EXAMPLE1.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = C:\SYSOP\BORLANDC\LIB
  9. INCLUDEPATH = C:\SYSOP\BORLANDC\INCLUDE
  10.  
  11.  
  12. #        *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #        *List Macros*
  20.  
  21.  
  22. EXE_dependencies =  \
  23.  qfml11.obj \
  24.  example1.obj
  25.  
  26. #        *Explicit Rules*
  27. example1.exe: example1.cfg $(EXE_dependencies)
  28.   $(TLINK) /3/v/x/c/P-/L$(LIBPATH) @&&|
  29. c0l.obj+
  30. qfml11.obj+
  31. example1.obj
  32. example1
  33.         # no map file
  34. emu.lib+
  35. mathl.lib+
  36. cl.lib
  37. |
  38.  
  39.  
  40. #        *Individual File Dependencies*
  41. example1.obj: example1.cfg example1.cpp 
  42.  
  43. #        *Compiler Configuration File*
  44. example1.cfg: example1.mak
  45.   copy &&|
  46. -ml
  47. -3
  48. -a
  49. -v
  50. -vi-
  51. -H=EXAMPLE1.SYM
  52. -wpro
  53. -weas
  54. -wpre
  55. -I$(INCLUDEPATH)
  56. -L$(LIBPATH)
  57. -P
  58. | example1.cfg
  59.  
  60.  
  61.